/config/script//sourceInline

Use

Use to specify JavaScript source for the script. Copy and paste a script directly into the command line. The script can contain any character that is legal in JavaScript.

Parameters

name: Name of script object

Data Key

Paste the script text into the data key.

Note: When the default key is set to true, it means the object is set to its default. In this case, the system works as follows:

  • On a PUT operation, the system ignores the data key. (Applicable only to /config nodes.)
  • On a GET operation, the response only contains “default”: True and does not contain the data key.
  • If the object has a base, it inherits its setting from its base.

See [Setting Objects to Their Default](https://docs.lineratesystems.com/087Rel ease_2.6/250REST_API_Reference_Guide/000Getting_Started_with_the_REST_API/300U nderstanding_the_REST_Hierarchy#Setting_Objects_to_Their_Default_(Default_Key) ).

Data Type

string

Default Data Value

“”

An object uses the default data value when one of the following is true:

  • For objects without bases–When the object’s default key is true.
  • For objects with bases–When the object’s default key is true, and when the default key is true for all of the object’s bases.

Default Allowed

True

Request Methods

GET, PUT

Examples

GET

curl -b cookie.jar -k https://10.1.2.3:8443/lrs/api/v1.0/config/script/sc1/sourceInline

GET Response

{"/config/script/sc1/sourceInline": {"defaultAllowed": true,
                                     "default": false,
                                     "data": "console.log('this is a sample script with two lines');\nvar x = 1;\n",
                                     "type": "string",
                                     "numChildren": 0,
                                     "deleteAllowed": false},
 "httpResponseCode": 200,
 "recurse": False,
 "requestPath": "/config/script/sc1/sourceInline"}

PUT

curl -b cookie.jar –data @data.json -k -H “Content-Type: application/json” -X PUT https://10.1.2.3:8443/lrs/api/v1.0/config/script/sc1/sourceInline

PUT Response

{"httpResponseCode": 200,
  "requestPath": "/config/script/sc1/sourceInline",
  "recurse":false}
  1. /config/script//sourceInline 1. Parameters 2. Data Key
    1. Data Type
    2. Default Data Value 3. Default Allowed 4. Request Methods 5. Related 6. Examples